crypto/tls.clientKeyExchangeMsg.ciphertext (field)
20 uses
crypto/tls (current package)
handshake_messages.go#L1506: ciphertext []byte
handshake_messages.go#L1513: length := len(m.ciphertext)
handshake_messages.go#L1519: copy(x[4:], m.ciphertext)
handshake_messages.go#L1534: m.ciphertext = data[4:]
key_agreement.go#L49: if len(ckx.ciphertext) < 2 {
key_agreement.go#L52: ciphertextLen := int(ckx.ciphertext[0])<<8 | int(ckx.ciphertext[1])
key_agreement.go#L53: if ciphertextLen != len(ckx.ciphertext)-2 {
key_agreement.go#L56: ciphertext := ckx.ciphertext[2:]
key_agreement.go#L98: ckx.ciphertext = make([]byte, len(encrypted)+2)
key_agreement.go#L99: ckx.ciphertext[0] = byte(len(encrypted) >> 8)
key_agreement.go#L100: ckx.ciphertext[1] = byte(len(encrypted))
key_agreement.go#L101: copy(ckx.ciphertext[2:], encrypted)
key_agreement.go#L258: if len(ckx.ciphertext) == 0 || int(ckx.ciphertext[0]) != len(ckx.ciphertext)-1 {
key_agreement.go#L262: preMasterSecret := ka.params.SharedKey(ckx.ciphertext[1:])
key_agreement.go#L308: ka.ckx.ciphertext = make([]byte, 1+len(ourPublicKey))
key_agreement.go#L309: ka.ckx.ciphertext[0] = byte(len(ourPublicKey))
key_agreement.go#L310: copy(ka.ckx.ciphertext[1:], ourPublicKey)
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)